home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / protect1.zip / PROTECT.MAK < prev    next >
Text File  |  1992-12-12  |  459b  |  26 lines

  1.  
  2. ## Make protect.com : 
  3.  
  4. protect.obj: protect.asm
  5.     masm /DMAKING_PROTECT protect;
  6.  
  7. protect.com:  protect.obj
  8.     link protect;
  9.     erase protect.com
  10.     exe2bin protect
  11.     rename protect.bin protect.com
  12.         erase protect.exe
  13.  
  14. ## Make unprot.com : 
  15.  
  16. unprot.obj: protect.asm
  17.     masm /DMAKING_UNPROT protect, unprot;
  18.  
  19. unprot.com:  unprot.obj
  20.     link unprot;
  21.     erase unprot.com
  22.     exe2bin unprot
  23.     rename unprot.bin unprot.com
  24.         erase unprot.exe
  25.  
  26.